FUNOVA Preprocessing QC statistics ¶

January 2025¶

In [19]:
import os
NOVA_HOME = "/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA"
NOVA_DATA_HOME = '/home/labs/hornsteinlab/Collaboration/FUNOVA'

LOGS_PATH = os.path.join(NOVA_DATA_HOME, "outputs/preprocessing/logs/")
PLOT_PATH = os.path.join(NOVA_DATA_HOME, "outputs/logs/")

os.chdir(NOVA_HOME)

import pandas as pd
import contextlib
import io
from IPython.display import display, Javascript
import seaborn as sns
from tools.preprocessing_tools.qc_reports.qc_utils import log_files_qc, run_validate_folder_structure, display_diff, sample_and_calc_variance, \
                                                show_site_survival_dapi_brenner, show_site_survival_dapi_cellpose, \
                                                show_site_survival_dapi_tiling, show_site_survival_target_brenner, \
                                                calc_total_sums, plot_filtering_heatmap, show_total_sum_tables, \
                                                plot_cell_count, plot_catplot, plot_hm_combine_batches, plot_hm, \
                                                run_calc_hist_new, plot_marker_data, find_bad_wells, create_marker_info_df, \
                                                show_site_survival_by_brenner_on_dapi_tiles, show_site_survival_target_brenner_tiles
                                                
from tools.preprocessing_tools.qc_reports.qc_config import (
    funova_markers as markers,
    funova_cell_lines as cell_lines,
    funova_cell_lines_to_cond as cell_lines_to_cond,
    funova_cell_lines_for_disp as cell_lines_for_disp,
    funova_reps as reps,
    funova_line_colors as line_colors,
    funova_lines_order as lines_order,
    funova_custom_palette as custom_palette,
    funova_expected_dapi_raw as expected_dapi_raw,
    funova_panels as panels,
    funova_marker_info as marker_info
)

from tools.show_images_utils import *
%load_ext autoreload
%autoreload 2
The autoreload extension is already loaded. To reload it, use:
  %reload_ext autoreload
In [20]:
# choose batches
batches = ['Batch1', 'Batch2']#, 'batch2', 'batch3']
batches
Out[20]:
['Batch1', 'Batch2']

I have created a folder called 'Batch1' in the logs dir and put all files inside¶

In [21]:
validate_antibody = False
In [22]:
df = log_files_qc(LOGS_PATH, batches, only_wt_cond = False)
reading logs of Batch1

Total of 1 files were read.
Before dup handeling  (171516, 22)
After duplication removal #1: (171516, 23)
After duplication removal #2: (171516, 23)
In [23]:
df[['cell_line', 'marker', 'cell_line_cond']] = df[['cell_line', 'marker', 'cell_line_cond']].apply(lambda x: x.str.replace('_', '-', regex=False))
In [24]:
df['filename'] = df['filename'].str.split('-').str[0]
df['site_num'] = df['site_num'].str.split('-').str[0]
In [25]:
df_dapi = df[df.marker=='DAPI']
df_target = df[df.marker!='DAPI']

Actual Files Validation¶

Raw Files Validation¶

  1. How many site tiff files do we have in each folder?
  2. Are all existing files valid? (tif, at least 2049kB, not corrupetd)
In [26]:
root_directory_raw = os.path.join(NOVA_DATA_HOME, 'input', 'images', 'raw')
In [27]:
df_metadata = extract_image_metadata(root_directory_raw, FILE_EXTENSION = '.tiff', KEY_BATCH = 'Batch')
In [28]:
# root_path = "/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/"
# marker_info_df = create_marker_info_df(root_path)
In [29]:
batches_raw = [batch.replace("_16bit_no_downsample","") for batch in batches]
raws = run_validate_folder_structure(root_directory_raw, False, panels, markers.copy(), PLOT_PATH, marker_info,
                                    cell_lines_to_cond, reps, cell_lines_for_disp, expected_dapi_raw,
                                     batches=batches_raw, fig_width=8,fig_height = 40,
                                    expected_count=100, validate_antibody = validate_antibody)
Batch1
Folder structure is valid.
No bad files are found.
Total Sites:  118400
========
Batch2
Folder structure is valid.
No bad files are found.
Total Sites:  118400
========
====================

Processed Files Validation¶

  1. How many site npy files do we have in each folder? -> How many sites survived the pre-processing?
  2. Are all existing files valid? (at least 100kB, npy not corrupted)
In [30]:
root_directory_proc = os.path.join(NOVA_DATA_HOME, 'input', 'images', 'processed')
procs = run_validate_folder_structure(root_directory_proc, True, panels, markers, PLOT_PATH, marker_info,
                                    cell_lines_to_cond, reps, cell_lines_for_disp, expected_dapi_raw,
                                     batches=batches, fig_width=8,fig_height = 40,
                                    expected_count=100, validate_antibody = validate_antibody)
Batch1
Folder structure is valid.
495 files are bad:
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/impaired-Autophagosome, rep1_r05c07f34-ch3t1_panelD_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f89-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f23-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f20-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f97-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f81-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f20-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f49-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f48-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f33-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f91-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f30-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f14-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f02-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f82-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f99-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f03-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f15-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f95-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f82-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f07-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f40-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f76-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f88-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF6, rep1_r05c05f06-ch2t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF6, rep2_r05c06f21-ch2t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-ATF6, rep2_r05c06f89-ch2t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/UPR-IRE1a, rep1_r05c03f96-ch2t1_panelB_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/DNA-damage-P53BP1, rep1_r05c19f39-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/DNA-damage-P53BP1, rep1_r05c19f79-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Necroptosis-HMGB1, rep1_r05c17f64-ch2t1_panelI_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Necroptosis-HMGB1, rep2_r05c18f49-ch2t1_panelI_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Necroptosis-HMGB1, rep2_r05c18f44-ch2t1_panelI_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Necrosis, rep1_r05c17f64-ch3t1_panelI_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Nuclear-speckles-SON, rep1_r05c13f60-ch2t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Nuclear-speckles-SON, rep2_r05c14f79-ch2t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Nuclear-speckles-SON, rep1_r05c13f92-ch2t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f15-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f08-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f23-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f54-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f28-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f53-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f04-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f06-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f58-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f45-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/TDP-43, rep1_r05c13f14-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/Untreated/Aberrant-splicing, rep1_r05c09f65-ch3t1_panelE_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/UPR-ATF4, rep2_r13c06f14-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/UPR-ATF4, rep2_r13c06f17-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/UPR-ATF4, rep1_r13c05f89-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/UPR-ATF4, rep2_r13c06f81-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/UPR-ATF6, rep2_r13c06f95-ch2t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/DNA-damage-P53BP1, rep2_r13c20f26-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/DNA-damage-P53BP1, rep2_r13c20f24-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/DNA-damage-P53BP1, rep2_r13c20f15-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/Necroptosis-HMGB1, rep1_r13c17f49-ch2t1_panelI_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/Necroptosis-HMGB1, rep1_r13c17f73-ch2t1_panelI_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/TDP-43, rep1_r13c13f03-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/TDP-43, rep2_r13c14f05-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/Splicing-factories, rep1_r13c11f12-ch2t1_panelF_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1001733/stress/Aberrant-splicing, rep1_r13c09f67-ch3t1_panelE_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f80-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f52-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f05-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f68-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f69-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f35-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f46-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f79-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f85-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f21-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f48-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f47-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f63-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f16-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f45-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f95-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f11-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f71-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f97-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f16-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF6, rep1_r07c05f65-ch2t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/UPR-ATF6, rep1_r07c05f70-ch2t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/DNA-damage-P53BP1, rep2_r07c20f95-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/DNA-damage-P53BP1, rep1_r07c19f33-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/DNA-damage-P53BP1, rep2_r07c20f66-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/TDP-43, rep1_r07c13f04-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/TDP-43, rep2_r07c14f09-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/TDP-43, rep1_r07c13f44-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/TDP-43, rep1_r07c13f13-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/TDP-43, rep2_r07c14f63-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/TDP-43, rep1_r07c13f58-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/Aberrant-splicing, rep2_r07c10f92-ch3t1_panelE_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/Untreated/Aberrant-splicing, rep1_r07c09f02-ch3t1_panelE_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep2_r15c06f81-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f86-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f16-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep2_r15c06f64-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep2_r15c06f84-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep2_r15c06f16-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f93-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep2_r15c06f33-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep2_r15c06f96-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f18-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f14-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f48-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f79-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f50-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF4, rep1_r15c05f97-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-ATF6, rep2_r15c06f18-ch2t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/UPR-IRE1a, rep1_r15c03f29-ch2t1_panelB_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/TDP-43, rep2_r15c14f05-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/TDP-43, rep1_r15c13f10-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1017118/stress/TDP-43, rep1_r15c13f21-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f15-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f16-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f77-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f51-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f18-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f66-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f47-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep2_r03c06f90-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f49-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f72-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF4, rep2_r03c06f81-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF6, rep2_r03c06f33-ch2t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF6, rep2_r03c06f98-ch2t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/UPR-ATF6, rep2_r03c06f88-ch2t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/DNA-damage-P53BP1, rep1_r03c19f54-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/DNA-damage-P53BP1, rep1_r03c19f08-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/Necroptosis-HMGB1, rep2_r03c18f66-ch2t1_panelI_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/Nuclear-speckles-SON, rep2_r03c14f52-ch2t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f81-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f71-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f53-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f64-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f88-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep2_r03c14f82-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f68-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f25-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f39-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f41-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f05-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f56-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f45-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f40-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f99-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f23-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f77-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f32-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f96-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep1_r03c13f48-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/TDP-43, rep2_r03c14f100-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/Splicing-factories, rep2_r03c12f93-ch2t1_panelF_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/Untreated/Aberrant-splicing, rep1_r03c09f05-ch3t1_panelE_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/impaired-Autophagosome, rep1_r11c07f30-ch3t1_panelD_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/UPR-ATF4, rep1_r11c05f05-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/UPR-ATF4, rep2_r11c06f96-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/UPR-ATF4, rep1_r11c05f78-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/DNA-damage-P53BP1, rep1_r11c19f35-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/DNA-damage-P53BP1, rep2_r11c20f45-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/Necroptosis-HMGB1, rep2_r11c18f70-ch2t1_panelI_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/Necroptosis-HMGB1, rep2_r11c18f86-ch2t1_panelI_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/Nuclear-speckles-SON, rep1_r11c13f59-ch2t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/TDP-43, rep1_r11c13f05-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/TDP-43, rep2_r11c14f02-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1025045/stress/Aberrant-splicing, rep2_r11c10f34-ch3t1_panelE_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/impaired-Autophagosome, rep1_r01c07f29-ch3t1_panelD_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep2_r01c06f20-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep2_r01c06f54-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f07-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f61-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f09-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep2_r01c06f47-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f55-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f34-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f35-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f15-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f48-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f21-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f70-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f83-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF6, rep2_r01c06f46-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF6, rep1_r01c05f11-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF6, rep1_r01c05f40-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF6, rep1_r01c05f88-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF6, rep1_r01c05f20-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF6, rep1_r01c05f23-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/UPR-ATF6, rep1_r01c05f81-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/DNA-damage-P53BP1, rep1_r01c19f97-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/DNA-damage-P53BP1, rep1_r01c19f16-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/DNA-damage-P53BP1, rep1_r01c19f94-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/DNA-damage-P53BP1, rep1_r01c19f54-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/DNA-damage-P53BP1, rep1_r01c19f75-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/Stress-initiation, rep1_r01c01f38-ch4t1_panelA_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/Nuclear-speckles-SON, rep2_r01c14f51-ch2t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f23-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep2_r01c14f82-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f49-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f01-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f82-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f51-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f27-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f34-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f25-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep2_r01c14f33-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep2_r01c14f15-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f10-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f09-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f98-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f46-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep2_r01c14f96-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f72-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep2_r01c14f95-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f65-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f11-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f40-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f43-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep2_r01c14f65-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/TDP-43, rep1_r01c13f36-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/Untreated/Aberrant-splicing, rep2_r01c10f79-ch3t1_panelE_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/impaired-Autophagosome, rep1_r09c07f45-ch3t1_panelD_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/UPR-ATF4, rep1_r09c05f51-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/UPR-ATF4, rep1_r09c05f72-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/UPR-ATF4, rep1_r09c05f37-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/UPR-ATF4, rep2_r09c06f85-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/UPR-ATF4, rep1_r09c05f67-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/UPR-ATF4, rep1_r09c05f14-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/UPR-ATF6, rep2_r09c06f54-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/DNA-damage-P53BP1, rep1_r09c19f20-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/Neuronal-activity, rep1_r09c19f20-ch3t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/Necroptosis-HMGB1, rep2_r09c18f93-ch2t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/Necroptosis-HMGB1, rep1_r09c17f80-ch2t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/Necroptosis-HMGB1, rep2_r09c18f75-ch2t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/Necroptosis-HMGB1, rep1_r09c17f25-ch2t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/Necroptosis-HMGB1, rep1_r09c17f85-ch2t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/TDP-43, rep1_r09c13f08-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/TDP-43, rep2_r09c14f06-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/TDP-43, rep1_r09c13f22-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/TDP-43, rep2_r09c14f07-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/TDP-43, rep2_r09c14f08-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/TDP-43, rep1_r09c13f37-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/Control-1048087/stress/TDP-43, rep1_r09c13f09-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/impaired-Autophagosome, rep1_r04c07f01-ch3t1_panelD_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/impaired-Autophagosome, rep2_r04c08f56-ch3t1_panelD_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f98-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f73-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f15-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f04-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f08-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f44-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f49-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f14-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f13-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f100-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f40-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f98-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f99-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f19-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f75-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f79-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f10-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f65-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f94-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f83-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f43-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF6, rep1_r04c05f99-ch2t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF6, rep2_r04c06f04-ch2t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF6, rep2_r04c06f16-ch2t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-ATF6, rep1_r04c05f17-ch2t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-IRE1a, rep1_r04c03f56-ch2t1_panelB_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/UPR-IRE1a, rep1_r04c03f02-ch2t1_panelB_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep2_r04c20f23-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep2_r04c20f52-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep1_r04c19f23-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep2_r04c20f75-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep1_r04c19f26-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep1_r04c19f55-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep2_r04c20f59-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep1_r04c19f91-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep1_r04c19f59-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep1_r04c17f80-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep2_r04c18f97-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep2_r04c18f80-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Necrosis, rep1_r04c17f80-ch3t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep1_r04c15f55-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep1_r04c15f97-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep2_r04c16f68-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Stress-initiation, rep2_r04c02f07-ch4t1_panelA_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f96-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f25-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f17-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep1_r04c13f25-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep1_r04c13f92-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f49-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f56-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f37-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/TDP-43, rep2_r04c14f06-ch3t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f97-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep2_r04c12f20-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f76-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f27-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f61-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f95-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/impaired-Autophagosome, rep1_r12c07f45-ch3t1_panelD_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF4, rep2_r12c06f62-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF4, rep1_r12c05f96-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF4, rep2_r12c06f09-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF4, rep1_r12c05f66-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF4, rep2_r12c06f81-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF4, rep1_r12c05f71-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF4, rep1_r12c05f95-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-ATF6, rep1_r12c05f67-ch2t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-IRE1a, rep1_r12c03f71-ch2t1_panelB_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/UPR-IRE1a, rep1_r12c03f06-ch2t1_panelB_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f73-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f85-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f83-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f88-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f90-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep1_r12c19f37-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep1_r12c19f65-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep2_r12c18f55-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f29-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f62-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f82-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep2_r12c18f86-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep2_r12c18f81-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Necrosis, rep2_r12c18f81-ch3t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Nuclear-speckles-SON, rep2_r12c14f27-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Splicing-factories, rep2_r12c12f42-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-1008566/stress/Splicing-factories, rep1_r12c11f02-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep1_r08c05f02-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep1_r08c05f21-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f100-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep1_r08c05f10-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f32-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f19-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f05-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep1_r08c05f09-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF6, rep2_r08c06f97-ch2t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-ATF6, rep2_r08c06f98-ch2t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-IRE1a, rep2_r08c04f73-ch2t1_panelB_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-IRE1a, rep1_r08c03f89-ch2t1_panelB_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/UPR-IRE1a, rep1_r08c03f84-ch2t1_panelB_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep1_r08c19f15-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep1_r08c19f21-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep1_r08c19f100-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep1_r08c19f19-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep2_r08c20f50-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep2_r08c20f84-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep2_r08c20f39-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep1_r08c19f32-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep1_r08c17f70-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep2_r08c18f31-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep2_r08c18f61-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep2_r08c18f46-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep1_r08c17f80-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep2_r08c18f64-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep1_r08c17f23-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necrosis, rep1_r08c17f70-ch3t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Necrosis, rep2_r08c18f61-ch3t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Parthanatos-early, rep1_r08c15f30-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Stress-initiation, rep1_r08c01f10-ch4t1_panelA_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Nuclear-speckles-SON, rep1_r08c13f17-ch2t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Nuclear-speckles-SON, rep1_r08c13f64-ch2t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/TDP-43, rep1_r08c13f72-ch3t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/TDP-43, rep2_r08c14f98-ch3t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/TDP-43, rep2_r08c14f100-ch3t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Splicing-factories, rep1_r08c11f50-ch2t1_panelF_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/Untreated/Splicing-factories, rep1_r08c11f48-ch2t1_panelF_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/UPR-ATF4, rep2_r16c06f13-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/UPR-ATF4, rep2_r16c06f31-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/UPR-ATF4, rep2_r16c06f08-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/UPR-ATF4, rep1_r16c05f51-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/UPR-ATF6, rep1_r16c05f41-ch2t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/UPR-IRE1a, rep1_r16c03f06-ch2t1_panelB_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/DNA-damage-P53BP1, rep2_r16c20f06-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/DNA-damage-P53BP1, rep2_r16c20f23-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/DNA-damage-P53BP1, rep2_r16c20f64-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/DNA-damage-P53BP1, rep2_r16c20f05-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/DNA-damage-P53BP1, rep2_r16c20f78-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/Necroptosis-HMGB1, rep2_r16c18f67-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/Necroptosis-HMGB1, rep2_r16c18f02-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/Necroptosis-HMGB1, rep2_r16c18f49-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/Parthanatos-early, rep2_r16c16f56-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/TDP-43, rep2_r16c14f65-ch3t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/Splicing-factories, rep1_r16c11f56-ch2t1_panelF_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/Splicing-factories, rep1_r16c11f12-ch2t1_panelF_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/C9orf72-HRE-981344/stress/Splicing-factories, rep1_r16c11f69-ch2t1_panelF_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/UPR-ATF4, rep1_r02c05f85-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/UPR-ATF4, rep2_r02c06f01-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/UPR-ATF6, rep2_r02c06f07-ch2t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/UPR-ATF6, rep2_r02c06f52-ch2t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/UPR-IRE1a, rep1_r02c03f31-ch2t1_panelB_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/UPR-IRE1a, rep1_r02c03f46-ch2t1_panelB_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/UPR-IRE1a, rep2_r02c04f69-ch2t1_panelB_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f31-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f48-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f57-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep2_r02c20f12-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep2_r02c20f21-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep2_r02c20f38-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Neuronal-activity, rep1_r02c19f57-ch3t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep1_r02c17f04-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep2_r02c18f51-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep2_r02c18f34-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep2_r02c18f50-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep2_r02c18f64-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep2_r02c18f28-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Necrosis, rep2_r02c18f48-ch3t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Parthanatos-early, rep1_r02c15f08-ch2t1_panelH_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Parthanatos-early, rep1_r02c15f61-ch2t1_panelH_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Nuclear-speckles-SON, rep2_r02c14f58-ch2t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Nuclear-speckles-SON, rep1_r02c13f03-ch2t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Nuclear-speckles-SON, rep1_r02c13f98-ch2t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Nuclear-speckles-SON, rep1_r02c13f68-ch2t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/TDP-43, rep1_r02c13f84-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/TDP-43, rep2_r02c14f08-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/TDP-43, rep2_r02c14f95-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/TDP-43, rep1_r02c13f20-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/TDP-43, rep1_r02c13f77-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/TDP-43, rep1_r02c13f33-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/TDP-43, rep2_r02c14f96-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Splicing-factories, rep1_r02c11f26-ch2t1_panelF_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Splicing-factories, rep2_r02c12f64-ch2t1_panelF_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Splicing-factories, rep1_r02c11f72-ch2t1_panelF_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/Untreated/Splicing-factories, rep2_r02c12f30-ch2t1_panelF_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/UPR-ATF4, rep2_r10c06f38-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/UPR-ATF4, rep1_r10c05f44-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/UPR-ATF4, rep1_r10c05f23-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/UPR-ATF6, rep1_r10c05f44-ch2t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/UPR-IRE1a, rep2_r10c04f22-ch2t1_panelB_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep2_r10c20f52-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep1_r10c19f17-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep1_r10c19f18-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep1_r10c19f64-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep1_r10c19f04-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/Necroptosis-HMGB1, rep1_r10c17f14-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/Necroptosis-HMGB1, rep2_r10c18f06-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/Necrosis, rep2_r10c18f02-ch3t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/Parthanatos-early, rep2_r10c16f48-ch2t1_panelH_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/TDP-43, rep1_r10c13f09-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-G348V-1057052/stress/TDP-43, rep2_r10c14f100-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f13-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f04-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f03-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep2_r06c06f12-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f31-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f45-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep2_r06c06f13-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f50-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f16-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f01-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f40-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f81-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/UPR-ATF6, rep1_r06c05f50-ch2t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/DNA-damage-P53BP1, rep1_r06c19f15-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Necroptosis-HMGB1, rep1_r06c17f01-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Necroptosis-HMGB1, rep1_r06c17f52-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Parthanatos-early, rep2_r06c16f12-ch2t1_panelH_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Parthanatos-early, rep2_r06c16f95-ch2t1_panelH_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Parthanatos-early, rep2_r06c16f37-ch2t1_panelH_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Nuclear-speckles-SON, rep2_r06c14f83-ch2t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Nuclear-speckles-SON, rep2_r06c14f09-ch2t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/Nuclear-speckles-SON, rep2_r06c14f44-ch2t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/TDP-43, rep1_r06c13f96-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/Untreated/TDP-43, rep1_r06c13f97-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep2_r14c06f03-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep2_r14c06f18-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f97-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f21-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep2_r14c06f05-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f16-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f62-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f49-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f18-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f82-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep2_r14c06f64-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f90-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF6, rep1_r14c05f49-ch2t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-ATF6, rep1_r14c05f81-ch2t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/UPR-IRE1a, rep1_r14c03f65-ch2t1_panelB_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/DNA-damage-P53BP1, rep2_r14c20f52-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/Neuronal-activity, rep2_r14c20f96-ch3t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/Necroptosis-HMGB1, rep2_r14c18f83-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/Necroptosis-HMGB1, rep2_r14c18f19-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/Necroptosis-HMGB1, rep1_r14c17f99-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/Necroptosis-HMGB1, rep2_r14c18f71-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/Stress-initiation, rep1_r14c01f08-ch4t1_panelA_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/TDP-43, rep1_r14c13f17-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/TDP-43, rep1_r14c13f03-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch1/TDP--43-N390D-1005373/stress/Splicing-factories, rep2_r14c12f17-ch2t1_panelF_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
Total Sites:  83934
========
Batch2
Folder structure is valid.
413 files are bad:
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f07-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f09-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f58-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f17-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f15-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f44-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f02-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f07-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep1_r05c05f18-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF4, rep2_r05c06f67-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/UPR-ATF6, rep1_r05c05f82-ch2t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/DNA-damage-P53BP1, rep2_r05c20f01-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/DNA-damage-P53BP1, rep1_r05c19f05-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/DNA-damage-P53BP1, rep1_r05c19f95-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/Parthanatos-early, rep2_r05c16f26-ch2t1_panelH_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/Nuclear-speckles-SON, rep1_r05c13f27-ch2t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/TDP-43, rep1_r05c13f03-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/Untreated/TDP-43, rep1_r05c13f05-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF4, rep2_r13c06f18-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF4, rep1_r13c05f53-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF4, rep1_r13c05f02-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF4, rep1_r13c05f33-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF4, rep1_r13c05f81-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF4, rep1_r13c05f04-ch3t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF6, rep1_r13c05f80-ch2t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/UPR-ATF6, rep2_r13c06f95-ch2t1_panelC_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/DNA-damage-P53BP1, rep1_r13c19f94-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/DNA-damage-P53BP1, rep2_r13c20f89-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/DNA-damage-P53BP1, rep1_r13c19f29-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/DNA-damage-P53BP1, rep1_r13c19f07-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/DNA-damage-P53BP1, rep2_r13c20f05-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/DNA-damage-P53BP1, rep2_r13c20f15-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/DNA-damage-P53BP1, rep2_r13c20f69-ch2t1_panelJ_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/Necroptosis-HMGB1, rep1_r13c17f52-ch2t1_panelI_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/Cytoskeleton, rep2_r13c02f61-ch3t1_panelA_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/Cytoskeleton, rep1_r13c01f73-ch3t1_panelA_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/Stress-initiation, rep2_r13c02f02-ch4t1_panelA_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/Nuclear-speckles-SON, rep2_r13c14f78-ch2t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep1_r13c13f63-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep1_r13c13f35-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep2_r13c14f19-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep2_r13c14f13-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep1_r13c13f29-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep1_r13c13f38-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep2_r13c14f04-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep2_r13c14f78-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1001733/stress/TDP-43, rep1_r13c13f02-ch3t1_panelG_Control-1001733_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f06-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f24-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f34-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f29-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f56-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f08-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f100-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f63-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f02-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f49-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep2_r07c06f31-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f58-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f44-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF4, rep1_r07c05f16-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF6, rep2_r07c06f04-ch2t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/UPR-ATF6, rep1_r07c05f79-ch2t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/DNA-damage-P53BP1, rep1_r07c19f33-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/DNA-damage-P53BP1, rep1_r07c19f82-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/Necroptosis-HMGB1, rep1_r07c17f38-ch2t1_panelI_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/TDP-43, rep2_r07c14f04-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/TDP-43, rep1_r07c13f05-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/Untreated/TDP-43, rep1_r07c13f03-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/impaired-Autophagosome, rep2_r15c08f08-ch3t1_panelD_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep1_r15c05f16-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep2_r15c06f07-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep1_r15c05f49-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep2_r15c06f33-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep1_r15c05f20-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep1_r15c05f19-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep1_r15c05f13-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/UPR-ATF4, rep1_r15c05f32-ch3t1_panelC_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/DNA-damage-P53BP1, rep2_r15c20f53-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/DNA-damage-P53BP1, rep2_r15c20f12-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/DNA-damage-P53BP1, rep1_r15c19f80-ch2t1_panelJ_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/Necroptosis-HMGB1, rep1_r15c17f35-ch2t1_panelI_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/Stress-initiation, rep2_r15c02f16-ch4t1_panelA_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/Stress-initiation, rep2_r15c02f08-ch4t1_panelA_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep1_r15c13f08-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep1_r15c13f13-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep1_r15c13f17-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep2_r15c14f02-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep2_r15c14f04-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep2_r15c14f07-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep1_r15c13f18-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1017118/stress/TDP-43, rep1_r15c13f16-ch3t1_panelG_Control-1017118_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f56-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF4, rep2_r03c06f98-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF4, rep2_r03c06f08-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF4, rep2_r03c06f12-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f42-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF4, rep1_r03c05f38-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF6, rep2_r03c06f47-ch2t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/UPR-ATF6, rep2_r03c06f04-ch2t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/DNA-damage-P53BP1, rep1_r03c19f10-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/DNA-damage-P53BP1, rep2_r03c20f09-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/DNA-damage-P53BP1, rep2_r03c20f63-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/Necroptosis-HMGB1, rep2_r03c18f58-ch2t1_panelI_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/Parthanatos-early, rep1_r03c15f36-ch2t1_panelH_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/Nuclear-speckles-SON, rep1_r03c13f02-ch2t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/Nuclear-speckles-SON, rep1_r03c13f50-ch2t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f16-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f47-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f33-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f18-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep2_r03c14f06-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f80-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f97-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f99-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f08-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f07-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/TDP-43, rep1_r03c13f48-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/Untreated/Splicing-factories, rep1_r03c11f09-ch2t1_panelF_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF4, rep1_r11c05f80-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF4, rep1_r11c05f05-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF4, rep1_r11c05f88-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF4, rep2_r11c06f04-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF4, rep2_r11c06f06-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF4, rep1_r11c05f17-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF4, rep1_r11c05f82-ch3t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-ATF6, rep1_r11c05f50-ch2t1_panelC_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/UPR-IRE1a, rep1_r11c03f21-ch2t1_panelB_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/DNA-damage-P53BP1, rep2_r11c20f22-ch2t1_panelJ_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/Necroptosis-HMGB1, rep2_r11c18f99-ch2t1_panelI_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/Parthanatos-early, rep2_r11c16f93-ch2t1_panelH_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f03-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f06-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f92-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f17-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f61-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f34-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f18-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep1_r11c13f02-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep2_r11c14f02-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1025045/stress/TDP-43, rep2_r11c14f05-ch3t1_panelG_Control-1025045_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f07-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/UPR-ATF4, rep2_r01c06f02-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f97-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f68-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/UPR-ATF4, rep1_r01c05f02-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/UPR-ATF4, rep2_r01c06f09-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/UPR-ATF6, rep1_r01c05f02-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/DNA-damage-P53BP1, rep1_r01c19f16-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/DNA-damage-P53BP1, rep2_r01c20f17-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/DNA-damage-P53BP1, rep2_r01c20f61-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/DNA-damage-P53BP1, rep2_r01c20f64-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/DNA-damage-P53BP1, rep1_r01c19f06-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/TDP-43, rep1_r01c13f64-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/TDP-43, rep2_r01c14f06-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/TDP-43, rep1_r01c13f52-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/Nuclear-speckles-SC35, rep1_r01c11f85-ch3t1_panelF_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/Splicing-factories, rep2_r01c12f27-ch2t1_panelF_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/Splicing-factories, rep1_r01c11f85-ch2t1_panelF_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/Untreated/Splicing-factories, rep2_r01c12f94-ch2t1_panelF_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/impaired-Autophagosome, rep1_r09c07f65-ch3t1_panelD_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep1_r09c05f64-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep1_r09c05f63-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep2_r09c06f09-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep1_r09c05f04-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep1_r09c05f33-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep1_r09c05f16-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep1_r09c05f48-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF4, rep1_r09c05f55-ch3t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF6, rep1_r09c05f08-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF6, rep1_r09c05f18-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF6, rep1_r09c05f09-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/UPR-ATF6, rep2_r09c06f60-ch2t1_panelC_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/DNA-damage-P53BP1, rep1_r09c19f91-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/DNA-damage-P53BP1, rep2_r09c20f02-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/DNA-damage-P53BP1, rep1_r09c19f22-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/DNA-damage-P53BP1, rep1_r09c19f97-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/DNA-damage-P53BP1, rep1_r09c19f17-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/DNA-damage-P53BP1, rep2_r09c20f16-ch2t1_panelJ_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Necroptosis-HMGB1, rep1_r09c17f41-ch2t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Necroptosis-HMGB1, rep2_r09c18f68-ch2t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Necrosis, rep1_r09c17f41-ch3t1_panelI_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Stress-initiation, rep2_r09c02f71-ch4t1_panelA_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Nuclear-speckles-SON, rep1_r09c13f57-ch2t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Nuclear-speckles-SON, rep2_r09c14f66-ch2t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Nuclear-speckles-SON, rep2_r09c14f27-ch2t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/Nuclear-speckles-SON, rep2_r09c14f14-ch2t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f07-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep2_r09c14f05-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f15-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep2_r09c14f03-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f66-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f33-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f47-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f21-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f03-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/Control-1048087/stress/TDP-43, rep1_r09c13f23-ch3t1_panelG_Control-1048087_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f68-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f37-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f62-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f06-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f31-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f98-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f19-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep1_r04c05f04-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF4, rep2_r04c06f08-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF6, rep1_r04c05f10-ch2t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/UPR-ATF6, rep2_r04c06f23-ch2t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep2_r04c20f02-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/DNA-damage-P53BP1, rep2_r04c20f17-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep2_r04c18f39-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep1_r04c17f13-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep1_r04c17f45-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep2_r04c18f80-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep2_r04c18f96-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep1_r04c17f35-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep2_r04c18f98-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep1_r04c17f59-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep2_r04c18f64-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep1_r04c17f38-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Necroptosis-HMGB1, rep1_r04c17f09-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep2_r04c16f75-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep2_r04c16f42-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep1_r04c15f34-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep2_r04c16f17-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep1_r04c15f03-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep1_r04c15f35-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep1_r04c15f12-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Parthanatos-early, rep2_r04c16f85-ch2t1_panelH_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep1_r04c13f51-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f67-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep2_r04c14f45-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SON, rep1_r04c13f30-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/TDP-43, rep1_r04c13f09-ch3t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Nuclear-speckles-SC35, rep1_r04c11f29-ch3t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f29-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f76-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f03-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep2_r04c12f35-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f25-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f39-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f70-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f40-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/Untreated/Splicing-factories, rep1_r04c11f48-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/impaired-Autophagosome, rep1_r12c07f48-ch3t1_panelD_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/impaired-Autophagosome, rep2_r12c08f18-ch3t1_panelD_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/UPR-ATF4, rep1_r12c05f20-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/UPR-ATF4, rep1_r12c05f05-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/UPR-ATF4, rep1_r12c05f18-ch3t1_panelC_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep1_r12c19f18-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f03-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f84-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f08-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f09-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f60-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f51-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep1_r12c19f22-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep1_r12c19f13-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f27-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/DNA-damage-P53BP1, rep2_r12c20f05-ch2t1_panelJ_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f47-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep2_r12c18f14-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep2_r12c18f05-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f98-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f93-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep2_r12c18f79-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep2_r12c18f26-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f85-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necroptosis-HMGB1, rep1_r12c17f90-ch2t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necrosis, rep2_r12c18f08-ch3t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Necrosis, rep1_r12c17f47-ch3t1_panelI_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Cytoskeleton, rep1_r12c01f02-ch3t1_panelA_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Nuclear-speckles-SON, rep1_r12c13f93-ch2t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/TDP-43, rep1_r12c13f04-ch3t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/TDP-43, rep1_r12c13f07-ch3t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/TDP-43, rep1_r12c13f09-ch3t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/TDP-43, rep1_r12c13f36-ch3t1_panelG_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Nuclear-speckles-SC35, rep2_r12c12f04-ch3t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-1008566/stress/Splicing-factories, rep2_r12c12f04-ch2t1_panelF_C9orf72-HRE-1008566_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep1_r08c05f03-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f17-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f09-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep1_r08c05f18-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f50-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep1_r08c05f48-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF4, rep2_r08c06f05-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF6, rep2_r08c06f25-ch2t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF6, rep2_r08c06f02-ch2t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/UPR-ATF6, rep2_r08c06f05-ch2t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep2_r08c20f35-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep2_r08c20f03-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep2_r08c20f67-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep1_r08c19f49-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep1_r08c19f91-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/DNA-damage-P53BP1, rep2_r08c20f98-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep1_r08c17f82-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep2_r08c18f84-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Necroptosis-HMGB1, rep2_r08c18f11-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Parthanatos-early, rep2_r08c16f78-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Parthanatos-early, rep2_r08c16f27-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Nuclear-speckles-SON, rep2_r08c14f66-ch2t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Nuclear-speckles-SON, rep2_r08c14f13-ch2t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Nuclear-speckles-SON, rep1_r08c13f93-ch2t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Nuclear-speckles-SON, rep2_r08c14f85-ch2t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Nuclear-speckles-SON, rep2_r08c14f52-ch2t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/TDP-43, rep2_r08c14f13-ch3t1_panelG_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Splicing-factories, rep2_r08c12f09-ch2t1_panelF_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Splicing-factories, rep2_r08c12f28-ch2t1_panelF_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Aberrant-splicing, rep1_r08c09f68-ch3t1_panelE_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/Untreated/Aberrant-splicing, rep1_r08c09f06-ch3t1_panelE_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/UPR-ATF4, rep1_r16c05f24-ch3t1_panelC_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/DNA-damage-P53BP1, rep1_r16c19f04-ch2t1_panelJ_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Necroptosis-HMGB1, rep1_r16c17f82-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Necroptosis-HMGB1, rep1_r16c17f15-ch2t1_panelI_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Parthanatos-early, rep1_r16c15f83-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Parthanatos-early, rep1_r16c15f16-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Parthanatos-early, rep1_r16c15f64-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Parthanatos-early, rep1_r16c15f20-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Parthanatos-early, rep1_r16c15f32-ch2t1_panelH_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/C9orf72-HRE-981344/stress/Stress-initiation, rep2_r16c02f01-ch4t1_panelA_C9orf72-HRE-981344_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-ATF4, rep1_r02c05f09-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-ATF4, rep2_r02c06f18-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-ATF4, rep1_r02c05f45-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-ATF4, rep1_r02c05f06-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-ATF6, rep2_r02c06f19-ch2t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-ATF6, rep1_r02c05f11-ch2t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-ATF6, rep2_r02c06f03-ch2t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/UPR-IRE1a, rep2_r02c04f49-ch2t1_panelB_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f14-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep2_r02c20f34-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f05-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f08-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f18-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep1_r02c19f03-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/DNA-damage-P53BP1, rep2_r02c20f31-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep2_r02c18f20-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/Necroptosis-HMGB1, rep1_r02c17f21-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/Necrosis, rep2_r02c18f20-ch3t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/Parthanatos-early, rep1_r02c15f31-ch2t1_panelH_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/Splicing-factories, rep1_r02c11f26-ch2t1_panelF_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/Untreated/Splicing-factories, rep2_r02c12f06-ch2t1_panelF_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/impaired-Autophagosome, rep2_r10c08f37-ch3t1_panelD_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/UPR-ATF4, rep1_r10c05f32-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/UPR-ATF4, rep1_r10c05f08-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/UPR-ATF4, rep1_r10c05f06-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/UPR-ATF4, rep1_r10c05f18-ch3t1_panelC_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep2_r10c20f11-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep2_r10c20f17-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep2_r10c20f08-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep2_r10c20f24-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep2_r10c20f16-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/DNA-damage-P53BP1, rep2_r10c20f36-ch2t1_panelJ_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Necroptosis-HMGB1, rep1_r10c17f82-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Necroptosis-HMGB1, rep1_r10c17f48-ch2t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Necrosis, rep1_r10c17f48-ch3t1_panelI_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Stress-initiation, rep1_r10c01f18-ch4t1_panelA_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Stress-initiation, rep2_r10c02f47-ch4t1_panelA_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Nuclear-speckles-SON, rep2_r10c14f17-ch2t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Nuclear-speckles-SON, rep2_r10c14f79-ch2t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/TDP-43, rep1_r10c13f04-ch3t1_panelG_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-G348V-1057052/stress/Aberrant-splicing, rep2_r10c10f19-ch3t1_panelE_TDP--43-G348V-1057052_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f28-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f04-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f31-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f41-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f08-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f45-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f33-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f15-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f09-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f66-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF4, rep1_r06c05f32-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF6, rep2_r06c06f34-ch2t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF6, rep2_r06c06f09-ch2t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/UPR-ATF6, rep1_r06c05f32-ch2t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/DNA-damage-P53BP1, rep2_r06c20f14-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/DNA-damage-P53BP1, rep2_r06c20f15-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/DNA-damage-P53BP1, rep2_r06c20f33-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/DNA-damage-P53BP1, rep1_r06c19f32-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/DNA-damage-P53BP1, rep2_r06c20f19-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/DNA-damage-P53BP1, rep2_r06c20f06-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Necroptosis-HMGB1, rep1_r06c17f21-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Necroptosis-HMGB1, rep2_r06c18f02-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Necroptosis-HMGB1, rep2_r06c18f05-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Necroptosis-HMGB1, rep1_r06c17f81-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Necrosis, rep2_r06c18f02-ch3t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Parthanatos-early, rep2_r06c16f46-ch2t1_panelH_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Parthanatos-early, rep2_r06c16f96-ch2t1_panelH_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Parthanatos-early, rep2_r06c16f23-ch2t1_panelH_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Nuclear-speckles-SON, rep2_r06c14f100-ch2t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Nuclear-speckles-SON, rep1_r06c13f07-ch2t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/TDP-43, rep1_r06c13f23-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/Untreated/Splicing-factories, rep2_r06c12f97-ch2t1_panelF_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f18-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f04-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f02-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/UPR-ATF4, rep1_r14c05f23-ch3t1_panelC_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/UPR-IRE1a, rep1_r14c03f34-ch2t1_panelB_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/UPR-IRE1a, rep2_r14c04f48-ch2t1_panelB_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/UPR-IRE1a, rep2_r14c04f58-ch2t1_panelB_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/Ubiquitin-levels, rep2_r14c04f48-ch3t1_panelB_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/DNA-damage-P53BP1, rep1_r14c19f17-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/DNA-damage-P53BP1, rep2_r14c20f83-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/DNA-damage-P53BP1, rep2_r14c20f07-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/DNA-damage-P53BP1, rep2_r14c20f29-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/DNA-damage-P53BP1, rep2_r14c20f66-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/DNA-damage-P53BP1, rep2_r14c20f78-ch2t1_panelJ_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/Necroptosis-HMGB1, rep1_r14c17f11-ch2t1_panelI_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/Nuclear-speckles-SON, rep1_r14c13f19-ch2t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/Nuclear-speckles-SON, rep1_r14c13f78-ch2t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/TDP-43, rep2_r14c14f11-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/TDP-43, rep2_r14c14f04-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/processed/Batch2/TDP--43-N390D-1005373/stress/TDP-43, rep1_r14c13f04-ch3t1_panelG_TDP--43-N390D-1005373_processed.npy small size (0.128 kB)
Total Sites:  64620
========
====================

Difference between Raw and Processed¶

In [31]:
display_diff(batches, raws, procs, PLOT_PATH, fig_width=8, fig_height = 40)
Batch1
========
Batch2
========

Variance in each batch (of processed files)¶

In [32]:
for batch in batches:
    with contextlib.redirect_stdout(io.StringIO()):
        var = sample_and_calc_variance(root_directory_proc, batch, 
                                       sample_size_per_markers=200, cond_count=1, rep_count=len(reps), 
                                       num_markers=len(markers))
    print(f'{batch} var: ',var)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
Batch1 var:  nan
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
/home/labs/hornsteinlab/Collaboration/NOVA_GAL/NOVA/tools/preprocessing_tools/qc_reports/qc_utils.py:29: RuntimeWarning: Mean of empty slice.
  tiles_var = np.var(x, axis=(1,2)).mean()
/home/labs/hornsteinlab/galavir/.conda/envs/nova/lib/python3.9/site-packages/numpy/core/_methods.py:129: RuntimeWarning: invalid value encountered in scalar divide
  ret = ret.dtype.type(ret / rcount)
Batch2 var:  nan

Preprocessing Filtering qc¶

By order of filtering

1. % site survival after Brenner on DAPI channel¶

Percentage out of the total sites

In [33]:
dapi_filter_by_brenner = show_site_survival_dapi_brenner(df_dapi,batches, line_colors, panels,
                                                        figsize=(6,18), reps=reps, vmax=100)
In [34]:
show_images(df_metadata, marker='DAPI', show_DAPI=False, batch=2, panel='L', cell_line='C9orf72-HRE-1008566', rep=1,
            condition='stress', funova=True, samples=5)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
1
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelL/stress/rep1/DAPI/r12c23f61-ch1t1.tiff
2
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelL/stress/rep1/DAPI/r12c23f07-ch1t1.tiff
3
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelL/stress/rep1/DAPI/r12c23f81-ch1t1.tiff
4
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelL/stress/rep1/DAPI/r12c23f01-ch1t1.tiff
5
Img shape: (1024, 1024)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelL/stress/rep1/DAPI/r12c23f72-ch1t1.tiff
In [35]:
show_images(df_metadata, marker='DAPI', show_DAPI=False, batch=2, panel='D', cell_line='Control-1017118', rep=1,
            condition='stress', funova=True, samples=5)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
1
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/Control-1017118/panelD/stress/rep1/DAPI/r15c07f66-ch1t1.tiff
2
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/Control-1017118/panelD/stress/rep1/DAPI/r15c07f59-ch1t1.tiff
3
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/Control-1017118/panelD/stress/rep1/DAPI/r15c07f26-ch1t1.tiff
4
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/Control-1017118/panelD/stress/rep1/DAPI/r15c07f67-ch1t1.tiff
5
Img shape: (1024, 1024)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/Control-1017118/panelD/stress/rep1/DAPI/r15c07f46-ch1t1.tiff
In [ ]:
# temp1 = get_specific_imgs(dfb, marker='DAPI', batch=2,cell_line='Control_1017118', rep=1, condition='stress')
# temp = temp1.loc[temp1.Panel =='D'].Target_Sharpness_Brenner
# temp1 = temp1.Target_Sharpness_Brenner
# plt.hist(temp1)
# plt.hist(temp)

2. % Site survival after Cellpose¶

Percentage out of the sites that passed the previous filter. In parenthesis are absolute values.

A site will be filtered out if Cellpose found 0 cells in it.

In [37]:
dapi_filter_by_cellpose = show_site_survival_dapi_cellpose(df_dapi, batches, dapi_filter_by_brenner, 
                                                           line_colors, panels, figsize=(6,18), reps=reps)

3. % Site survival by tiling¶

Percentage out of the sites that passed the previous filter. In parenthesis are absolute values.

A site will be filtered out if after tiling, no tile is containing at least 85% of a cell that Cellpose detected.

In [38]:
dapi_filter_by_tiling=show_site_survival_dapi_tiling(df_dapi, batches, dapi_filter_by_cellpose, 
                                                     line_colors, panels, figsize=(6,18), reps=reps)

4. % Site survival after Brenner on DAPI's tiles¶

Percentage out of the sites that passed the previous filter. In parenthesis are absolute values (if different than the percentages).

In [39]:
dapi_filter_by_brenner_tiles=show_site_survival_by_brenner_on_dapi_tiles(df_dapi, batches, dapi_filter_by_tiling, 
                                                     line_colors, panels, figsize=(6,18), reps=reps)

5. % Site survival after Brenner on target channel¶

Percentage out of the sites that passed the previous filter. In parenthesis are absolute values (if different than the percentages).

In [40]:
show_site_survival_target_brenner(df_dapi, df_target, dapi_filter_by_brenner_tiles,
                                 figsize=(6,24), markers=markers)
In [41]:
df_dapi.iloc[np.where(df_dapi['n_valid_tiles']-df_dapi['n_valid_tiles_after_tiles_brenner'])][['n_valid_tiles','n_valid_tiles_after_tiles_brenner']]
Out[41]:
n_valid_tiles n_valid_tiles_after_tiles_brenner
61865 2 0.0
61789 3 2.0
61609 2 0.0
61606 1 0.0
61633 2 0.0
... ... ...
118993 1 0.0
118990 1 0.0
119014 2 0.0
118984 1 0.0
119013 1 0.0

5557 rows × 2 columns

In [42]:
## Images that were completely removed and their corresponding DAPI 
show_images(df_metadata, marker = 'Senescence-signaling', show_DAPI = True, 
            batch = 1, cell_line ='Control-1048087', 
            condition = 'stress', rep=2, funova = True, samples = 5)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
1
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/Senescence-signaling/r09c24f54-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/DAPI/r09c24f54-ch1t1.tiff
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
2
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/Senescence-signaling/r09c24f03-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/DAPI/r09c24f03-ch1t1.tiff
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
3
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/Senescence-signaling/r09c24f27-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/DAPI/r09c24f27-ch1t1.tiff
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
4
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/Senescence-signaling/r09c24f83-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/DAPI/r09c24f83-ch1t1.tiff
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
5
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/Senescence-signaling/r09c24f38-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/Control-1048087/panelL/stress/rep2/DAPI/r09c24f38-ch1t1.tiff
Img shape: (1024, 1024)
--------------------------------
In [43]:
show_images(df_metadata, marker='Parthanatos-early', show_DAPI=False, batch=2, panel='H', cell_line='TDP--43-G348V-1057052', 
            rep=2, condition='Untreated', funova=True, samples=5)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
1
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/TDP--43-G348V-1057052/panelH/Untreated/rep2/Parthanatos-early/r02c16f12-ch2t1.tiff
2
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/TDP--43-G348V-1057052/panelH/Untreated/rep2/Parthanatos-early/r02c16f18-ch2t1.tiff
3
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/TDP--43-G348V-1057052/panelH/Untreated/rep2/Parthanatos-early/r02c16f37-ch2t1.tiff
4
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/TDP--43-G348V-1057052/panelH/Untreated/rep2/Parthanatos-early/r02c16f05-ch2t1.tiff
5
Img shape: (1024, 1024)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/TDP--43-G348V-1057052/panelH/Untreated/rep2/Parthanatos-early/r02c16f23-ch2t1.tiff
In [44]:
show_images(df_metadata, marker='Protein-degradation', show_DAPI=False, batch=2, panel='L', cell_line='C9orf72-HRE-981344', rep=1,
            condition='stress', funova=True, samples=5)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
1
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-981344/panelL/stress/rep1/Protein-degradation/r16c23f53-ch2t1.tiff
2
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-981344/panelL/stress/rep1/Protein-degradation/r16c23f78-ch2t1.tiff
3
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-981344/panelL/stress/rep1/Protein-degradation/r16c23f14-ch2t1.tiff
4
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-981344/panelL/stress/rep1/Protein-degradation/r16c23f77-ch2t1.tiff
5
Img shape: (1024, 1024)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-981344/panelL/stress/rep1/Protein-degradation/r16c23f29-ch2t1.tiff

Find non valid wells

In [45]:
dfb = pd.read_csv("/home/labs/hornsteinlab/Collaboration/FUNOVA/outputs/preprocessing/brenner/raw_metrics280125_exp3.csv")
# Extract the panel (e.g., "panelD") from the Path column
dfb['Panel'] = dfb['Path'].str.extract(r'/panel([A-Z])/', expand=True)
dfb['image_id'] = dfb['Path'].apply(lambda path: path.split('/')[-1].split('.')[0])
find_bad_wells(dfb, threshold=50000, percentage_filter=70)
Out[45]:
Panel Condition CellLine Rep Batch Count_table1 Count_table2 Percentage Combination Marker
0 J stress C9orf72-HRE_981344 rep1 Batch1 221 300 73.666667 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... NaN
1 L stress C9orf72-HRE_1008566 rep1 Batch2 285 300 95.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... NaN
2 L stress C9orf72-HRE_981344 rep1 Batch2 268 300 89.333333 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... NaN
3 NaN Untreated TDP--43-G348V_1057052 rep2 Batch2 84 100 84.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... Parthanatos-early
4 NaN stress C9orf72-HRE_1008566 rep1 Batch2 96 100 96.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... Protein-degradation
5 NaN stress C9orf72-HRE_1008566 rep1 Batch2 94 100 94.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... Senescence-signaling
6 NaN stress C9orf72-HRE_981344 rep1 Batch1 91 100 91.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... DNA-damage-P53BP1
7 NaN stress C9orf72-HRE_981344 rep1 Batch1 77 100 77.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... Neuronal-activity
8 NaN stress C9orf72-HRE_981344 rep1 Batch2 90 100 90.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... Protein-degradation
9 NaN stress C9orf72-HRE_981344 rep1 Batch2 91 100 91.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... Senescence-signaling
10 NaN stress C9orf72-HRE_981344 rep2 Batch1 78 100 78.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... Nuclear-speckles-SC35
11 NaN stress C9orf72-HRE_981344 rep2 Batch2 79 100 79.000000 ['Condition', 'CellLine', 'Rep', 'Batch', 'Mar... DNA-damage-P53BP1
12 D stress Control_1017118 rep1 Batch2 92 100 92.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... DAPI
13 F stress C9orf72-HRE_981344 rep2 Batch1 78 100 78.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... Nuclear-speckles-SC35
14 H Untreated TDP--43-G348V_1057052 rep2 Batch2 84 100 84.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... Parthanatos-early
15 J stress C9orf72-HRE_981344 rep1 Batch1 91 100 91.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... DNA-damage-P53BP1
16 J stress C9orf72-HRE_981344 rep1 Batch1 77 100 77.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... Neuronal-activity
17 J stress C9orf72-HRE_981344 rep2 Batch2 79 100 79.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... DNA-damage-P53BP1
18 L stress C9orf72-HRE_1008566 rep1 Batch2 95 100 95.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... DAPI
19 L stress C9orf72-HRE_1008566 rep1 Batch2 96 100 96.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... Protein-degradation
20 L stress C9orf72-HRE_1008566 rep1 Batch2 94 100 94.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... Senescence-signaling
21 L stress C9orf72-HRE_981344 rep1 Batch2 87 100 87.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... DAPI
22 L stress C9orf72-HRE_981344 rep1 Batch2 90 100 90.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... Protein-degradation
23 L stress C9orf72-HRE_981344 rep1 Batch2 91 100 91.000000 ['Panel', 'Condition', 'CellLine', 'Rep', 'Bat... Senescence-signaling
In [46]:
# thresholds = {
#     "Stress_initiation": (0, 99),
#     "Aberrant_splicing": (1, 97),
#     "Autophagy": (5, 97),
#     "DAPI": (0.2, 95),
#     "Apoptosis": (0.27, 95),
#     "impaired_Autophagosome": (5, 99),
#     "Cytoskeleton": (10, 99.8),
#     "DNA_damage_P53BP1": (0.3, 90),
#     "DNA_damage_pH2Ax": (7, 85),
#     "mature_Autophagosome": (2, 98),
#     "Necrosis": (4, 95),
#     "Neuronal_activity": (5, 90),
#     "Nuclear_speckles_SC35": (0.2, 85),
#     "Nuclear_speckles_SON": (0.2, 85),
#     "Parthanatos_early": (0, 85),
#     "Parthanatos_late": (5, 95),
#     "Protein_degradation": (5, 92),
#     "Senescence_signaling": (10, 90),
#     "Splicing_factories": (0, 95),
#     "TDP-43": (5, 99.2),
#     "Ubiquitin_levels": (2, 90),
#     "UPR_ATF4": (2, 99.7), 
#     "UPR_ATF6": (3, 100),
#     "UPR_IRE1a": (2, 98),
#     "Necroptosis_pMLKL": (5, 90),
#     "Necroptosis_HMGB1": (0.01, 90),
# }
# # Extended batch data with new entries
# data = [
#     (2, 'DNA_damage_pH2Ax', 1, 1017118, 'Untreated'),
#     (2, 'Parthanatos_early', 1, 1048087, 'stress'),
#     (2, 'DNA_damage_pH2Ax', 2, 1008566, 'stress'),
#     (2, 'Parthanatos_early', 1, 981344, 'stress'),
#     (2, 'Nuclear_speckles_SON', 1, 981344, 'stress'),
#     (1, 'Autophagy', 1, 1057052, 'stress'),
#     (1, 'impaired_Autophagosome', 1, 1057052, 'stress'),
#     (1, 'UPR_IRE1a', 1, 1057052, 'stress'),
#     (1, 'Ubiquitin_levels', 1, 1057052, 'stress'),
#     (1, 'UPR_IRE1a', 1, 981344, 'stress'),
#     (1, 'Ubiquitin_levels', 1, 981344, 'stress'),
#     (1, 'DNA_damage_P53BP1', 1, 981344, 'stress'),
#     (1, 'Neuronal_activity', 1, 981344, 'stress'),
#     (1, 'Necroptosis_HMGB1', 1, 981344, 'stress'),
#     (1, 'Necrosis', 1, 981344, 'stress'),
#     (1, 'Nuclear_speckles_SC35', 2, 981344, 'stress'),
#     (1, 'Splicing_factories', 2, 981344, 'stress'),
#     (1, 'Aberrant_splicing', 2, 981344, 'stress'),
#     (1, 'Parthanatos_late', 2, 981344, 'stress'),
#     (1, 'Senescence_signaling', 2, 1048087, 'stress'),
#     (1, 'Apoptosis', 2, 981344, 'stress'),
#     (1, 'Necroptosis_pMLKL', 2, 981344, 'stress'),
#     (2, 'Autophagy', 1, 1017118, 'stress'),
#     (2, 'impaired_Autophagosome', 1, 1017118, 'stress'),
#     (2, 'UPR_IRE1a', 1, 1048087, 'Untreated'),
#     (2, 'UPR_IRE1a', 1, 1008566, 'stress'),
#     (2, 'Ubiquitin_levels', 1, 1048087, 'Untreated'),
#     (2, 'Ubiquitin_levels', 1, 1008566, 'stress'),
#     (2, 'DNA_damage_P53BP1', 1, 1017118, 'stress'),
#     (2, 'Neuronal_activity', 1, 1017118, 'stress'),
#     (2, 'DNA_damage_P53BP1', 2, 981344, 'stress'),
#     (2, 'Neuronal_activity', 2, 981344, 'stress'),
#     (2, 'DNA_damage_P53BP1', 1, 981344, 'stress'),
#     (2, 'Neuronal_activity', 1, 981344, 'stress'),
#     (2, 'DNA_damage_P53BP1', 1, 1057052, 'stress'),
#     (2, 'Neuronal_activity', 1, 1057052, 'stress'),
#     (2, 'DNA_damage_P53BP1', 1, 1005373, 'stress'),
#     (2, 'Neuronal_activity', 1, 1005373, 'stress'),
#     (2, 'DNA_damage_P53BP1', 2, 1057052, 'stress'),
#     (2, 'Neuronal_activity', 2, 1057052, 'stress'),
#     (2, 'Necroptosis_HMGB1', 1, 981344, 'Untreated'),
#     (2, 'Necrosis', 1, 981344, 'Untreated'),
#     (2, 'Necroptosis_HMGB1', 2, 981344, 'stress'),
#     (2, 'Necrosis', 2, 981344, 'stress'),
#     (2, 'Necroptosis_HMGB1', 2, 1001733, 'stress'),
#     (2, 'Necrosis', 2, 1001733, 'stress'),
#     (2, 'Necroptosis_HMGB1', 2, 1005373, 'stress'),
#     (2, 'Necrosis', 2, 1005373, 'stress')
# ]

# # Cell line ID mapping
# cell_line_mapping = {
#     1008566: 'C9orf72-HRE_1008566',
#     981344: 'C9orf72-HRE_981344',
#     1001733: 'Control_1001733',
#     1017118: 'Control_1017118',
#     1025045: 'Control_1025045',
#     1048087: 'Control_1048087',
#     1057052: 'TDP--43-G348V_1057052',
#     1005373: 'TDP--43-N390D_1005373'
# }

# # Convert to DataFrame (renamed to `marker_df`)
# marker_df = pd.DataFrame(data, columns=['Batch', 'Name', 'Rep', 'CellLineID', 'Condition'])

# lower_thresh_DAPI, upper_thresh_DAPI = thresholds['DAPI']
# cb = get_specific_imgs(dfb, marker='DAPI')
# cb = cb.loc[(cb.Batch == 'Batch1') | (cb.Batch == 'Batch2')].Target_Sharpness_Brenner.values
# lower_p_DAPI = np.percentile(cb, lower_thresh_DAPI)
# upper_p_DAPI = np.percentile(cb, upper_thresh_DAPI)

# # Iterate over each row
# for _, row in marker_df.iterrows():
#     batch, marker, rep, cell_line_id, condition = row

#     # Match Cell Line Name
#     cell_line = cell_line_mapping.get(cell_line_id, f'Unknown_{cell_line_id}')

#     # Fetch images based on specific conditions
#     cb1 = get_specific_imgs(dfb, marker=marker, batch=batch, rep=rep, 
#                            cell_line=cell_line, condition=condition)
    
#     dapi_paths = cb1.Path.apply(lambda p: get_dapi_path(p, marker1=marker, marker2='DAPI', funova=True))
#     dfDAPI = dfb.loc[dfb['Path'].isin(dapi_paths)].Target_Sharpness_Brenner.values
#     cb1 = cb1.Target_Sharpness_Brenner.values

#     # Print statistics dynamically for the specific selection
#     print(f"Stats for marker: {marker}, batch: {batch}, rep: {rep}, cell_line: {cell_line}, condition: {condition}")
#     print(f"Mean: {np.mean(cb1):.2f}, Median: {np.median(cb1):.2f}, "
#           f"10th Percentile: {np.percentile(cb1, 10):.2f}, "
#           f"50th Percentile (Median): {np.percentile(cb1, 50):.2f}, "
#           f"90th Percentile: {np.percentile(cb1, 90):.2f}")

#     # Fetch images for the entire dataset with the given marker
#     cb = get_specific_imgs(dfb, marker=marker)
#     cb = cb.loc[(cb.Batch == 'Batch1') | (cb.Batch == 'Batch2')].Target_Sharpness_Brenner.values
    
#     lower_thresh, upper_thresh = thresholds[marker]
#     lower_p = np.percentile(cb, lower_thresh)
#     upper_p = np.percentile(cb, upper_thresh)
    
#     filtered_out = np.sum((cb1 < lower_p) | (cb1 > upper_p))
#     total_count = len(cb1)
#     filtered_percentage = (filtered_out / total_count) * 100 if total_count > 0 else 0
    
#     filtered_out_DAPI = np.sum((dfDAPI < lower_p_DAPI) | (dfDAPI > upper_p_DAPI))
#     total_count_DAPI = len(dfDAPI)
#     filtered_percentage_DAPI = (filtered_out_DAPI / total_count_DAPI) * 100 if total_count_DAPI > 0 else 0

#     # Print statistics dynamically for the full dataset
#     print(f"Stats for marker: {marker} (All batches, reps, and cell lines)")
#     print(f"Mean: {np.mean(cb):.2f}, Median: {np.median(cb):.2f}, "
#           f"10th Percentile: {np.percentile(cb, 10):.2f}, "
#           f"50th Percentile (Median): {np.percentile(cb, 50):.2f}, "
#           f"90th Percentile: {np.percentile(cb, 90):.2f}")
    
#     print(f"Threshold Percentiles ({lower_thresh}% - {upper_thresh}%): {lower_p:.2f} - {upper_p:.2f}")
#     print(f"Filtered Out: {filtered_out}/{total_count} ({filtered_percentage:.2f}%)")
#     print(f"Filtered Out_DAPI: {filtered_out_DAPI}/{total_count_DAPI} ({filtered_percentage_DAPI:.2f}%)")

#     print("-" * 80)  # Separator for readability
In [47]:
show_images(df_metadata, marker='DNA-damage-pH2Ax', show_DAPI=True, batch=2, cell_line='C9orf72-HRE-1008566', rep=2,
            condition='stress', funova=True, samples=5)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
1
Img shape: (1024, 1024)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelH/stress/rep2/DNA-damage-pH2Ax/r12c16f42-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/C9orf72-HRE-1008566/panelH/stress/rep2/DAPI/r12c16f42-ch1t1.tiff
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
2
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelH/stress/rep2/DNA-damage-pH2Ax/r12c16f20-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/C9orf72-HRE-1008566/panelH/stress/rep2/DAPI/r12c16f20-ch1t1.tiff
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
3
Img shape: (1024, 1024)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelH/stress/rep2/DNA-damage-pH2Ax/r12c16f52-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/C9orf72-HRE-1008566/panelH/stress/rep2/DAPI/r12c16f52-ch1t1.tiff
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
4
Img shape: (1024, 1024)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelH/stress/rep2/DNA-damage-pH2Ax/r12c16f89-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/C9orf72-HRE-1008566/panelH/stress/rep2/DAPI/r12c16f89-ch1t1.tiff
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
--------------------------------
5
Img shape: (1024, 1024)
WARNING:root:The image shape (1080, 1080) isn't as expected (1024, 1024).
Cropping image to fit
WARNING:root:Removing pixels from the frame (28, 28)
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch2/C9orf72-HRE-1008566/panelH/stress/rep2/DNA-damage-pH2Ax/r12c16f98-ch3t1.tiff
/home/labs/hornsteinlab/Collaboration/FUNOVA/input/images/raw/Batch1/C9orf72-HRE-1008566/panelH/stress/rep2/DAPI/r12c16f98-ch1t1.tiff
Img shape: (1024, 1024)
--------------------------------

6. % Site survival after Brenner on target channel tiles¶

Percentage out of the tiles that passed the previous filter. In parenthesis are absolute values (if different than the percentages).

In [ ]:
show_site_survival_target_brenner_tiles(df_dapi, df_target, dapi_filter_by_brenner_tiles,
                                 figsize=(6,24), markers=markers)

Statistics About the Processed Files¶

In [ ]:
names = ['Total number of tiles', 'Total number of whole cells']
stats = ['n_valid_tiles_after_tiles_brenner','site_whole_cells_counts_sum','site_cell_count','site_cell_count_sum']
total_sum = calc_total_sums(df_target, df_dapi, stats, markers)
In [ ]:
total_sum.rename(columns={'n_valid_tiles_after_tiles_brenner': 'n_valid_tiles'}, inplace=True)
In [ ]:
plot_marker_data(total_sum, split_by_cell_line=True)
In [ ]:
plot_marker_data(total_sum, split_by_cell_line=False)

Total tiles¶

In [ ]:
total_sum.n_valid_tiles.sum()

Total whole nuclei in tiles¶

In [ ]:
total_sum[total_sum.marker =='DAPI'].site_whole_cells_counts_sum.sum()

Total nuclei in sites¶

In [ ]:
total_sum[total_sum.marker =='DAPI'].site_cell_count.sum()
In [ ]:
show_total_sum_tables(total_sum)

Show Total Tile Counts¶

For each batch, cell line, replicate and markerTotal number of tiles

In [ ]:
to_heatmap = total_sum.rename(columns={'n_valid_tiles':'index'})
plot_filtering_heatmap(to_heatmap, extra_index='marker', vmin=None, vmax=None,
                      xlabel = 'Total number of tiles', show_sum=True, figsize=(6,24))

Show Total Whole Cell Counts¶

For each batch, cell line, replicate and markerTotal number of tiles

In [ ]:
to_heatmap = total_sum.rename(columns={'site_whole_cells_counts_sum':'index'})
plot_filtering_heatmap(to_heatmap, extra_index='marker', vmin=None, vmax=None,
                      xlabel = 'Total number of whole cells', show_sum=True, figsize=(6,24))

Show Cell Count Statistics per Batch¶

In [ ]:
df_no_empty_sites = df_dapi[df_dapi.n_valid_tiles_after_tiles_brenner !=0]
plot_cell_count(df_no_empty_sites, lines_order, custom_palette, y='site_cell_count_sum', 
                title='Cell Count Average per Site (from tiles)', figsize=(16,6))

plot_cell_count(df_no_empty_sites, lines_order, custom_palette, y='site_whole_cells_counts_sum',
                title='Whole Cell Count Average per Site',figsize=(16,6))

plot_cell_count(df_no_empty_sites, lines_order, custom_palette, y='site_cell_count',
               title='Cellpose Cell Count Average per Site',figsize=(16,6))

Show Tiles per Site Statistics¶

In [ ]:
df_dapi.groupby(['cell_line_cond']).n_valid_tiles_after_tiles_brenner.mean()
In [ ]:
plot_catplot(df_dapi, sns.color_palette('colorblind'), reps=reps,x='cell_line', y_title='Valid Tiles Count', x_title='Cell Line', y='n_valid_tiles_after_tiles_brenner', hue='rep',
             height=4, aspect=2)

Show Mean of cell count in valid tiles¶

In [ ]:
# plot_hm(df_dapi, split_by='rep', rows='cell_line', columns='panel', vmax=3)

Assessing Staining Reproducibility and Outliers¶

In [ ]:
# for batch in batches:
#     print(batch)
#     run_calc_hist_new(batch,cell_lines_for_disp, markers, root_directory_raw, root_directory_proc,
#                            hist_sample=10,sample_size_per_markers=10, ncols=4, nrows=1, figsize=(6,2))
#     print("="*30)
    
In [ ]:
# save notebook as HTML ( the HTML will be saved in the same folder the original script is)
display(Javascript('IPython.notebook.save_checkpoint();'))
os.system(f'jupyter nbconvert --to html tools/preprocessing_tools/qc_reports/qc_report_funova_exp3.ipynb --output {NOVA_HOME}/manuscript/preprocessing_qc_reports/qc_report_funova_exp3_04.03.25.html')
In [ ]: